other sections
ATOF(3) | Linux Programmer's Manual | ATOF(3) |
名前¶
atof - 文字列を double 型の数値に変換
書式¶
#include <stdlib.h> double atof(const char *nptr);
説明¶
atof() 関数は、nptrによって指示される文字列のはじめの部分を double 型の数値に変換する。 この振る舞いは、 atof() 関数がエラーを見つけないことを除いては、
strtod(nptr, (char **) NULL);
と同じである。
返り値¶
変換された値。
準拠¶
SVr4, POSIX.1-2001, 4.3BSD, C89, C99.
関連項目¶
1993-03-29 | GNU |